home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / usr / include / linux / if_addrlabel.h < prev    next >
C/C++ Source or Header  |  2009-10-16  |  658b  |  35 lines

  1. /*
  2.  * if_addrlabel.h - netlink interface for address labels
  3.  *
  4.  * Copyright (C)2007 USAGI/WIDE Project,  All Rights Reserved.
  5.  *
  6.  * Authors:
  7.  *    YOSHIFUJI Hideaki @ USAGI/WIDE <yoshfuji@linux-ipv6.org>
  8.  */
  9.  
  10. #ifndef __LINUX_IF_ADDRLABEL_H
  11. #define __LINUX_IF_ADDRLABEL_H
  12.  
  13. #include <linux/types.h>
  14.  
  15. struct ifaddrlblmsg
  16. {
  17.     __u8        ifal_family;        /* Address family */
  18.     __u8        __ifal_reserved;    /* Reserved */
  19.     __u8        ifal_prefixlen;        /* Prefix length */
  20.     __u8        ifal_flags;        /* Flags */
  21.     __u32        ifal_index;        /* Link index */
  22.     __u32        ifal_seq;        /* sequence number */
  23. };
  24.  
  25. enum
  26. {
  27.     IFAL_ADDRESS = 1,
  28.     IFAL_LABEL = 2,
  29.     __IFAL_MAX
  30. };
  31.  
  32. #define IFAL_MAX    (__IFAL_MAX - 1)
  33.  
  34. #endif
  35.